home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Pick Me Up / source code / Movie app source / pickmeUp97 / source / CDefaultButtonWindow.h / CDefaultButtonWindow.h
Encoding:
Text File  |  1997-06-21  |  868 b   |  38 lines  |  [TEXT/CWIE]

  1. //  CDefaultButtonWindow.h
  2. /*
  3.       *    $Workfile: CDefaultButtonWindow.h $
  4.     *    $Modtime: 6/20/97 5:52 PM $
  5.     *    $Revision: 2 $
  6.     *    $Date: 6/20/97 5:52 PM $
  7.     *    $History: CDefaultButtonWindow.h $
  8.  * 
  9.  * *****************  Version 2  *****************
  10.  * User: jwoo         QDate: 6/20/97    Time: 5:52 PM
  11.  * Updated in $/ConMan/ConMan Interface Source/General Interface Classes/Generic
  12.  * June 20, 1997:  No code change here.  Just added the version control
  13.  * header.
  14.  
  15. */
  16.  
  17. #pragma once
  18.  
  19.  
  20. //  This class is exactly like LDialogBox accept it doesn't automatically add
  21. //  this as a listener to the buttons.
  22. class  CDefaultButtonWindow : public LDialogBox
  23. {
  24. public:
  25.  
  26.     enum{class_ID = 'CDBw'};
  27.     
  28.     CDefaultButtonWindow(LStream*        inStream);
  29.     ~CDefaultButtonWindow();
  30.     
  31.     virtual void        SetDefaultButton(PaneIDT  inButtonID);
  32.     virtual void        SetCancelButton(PaneIDT  inButtonID);
  33.  
  34.  
  35.  
  36.  
  37.  
  38. };